Printing: Better typography
authorMatthias Clasen <mclasen@redhat.com>
Fri, 22 Aug 2014 14:15:44 +0000 (10:15 -0400)
committerMatthias Clasen <mclasen@redhat.com>
Tue, 30 Sep 2014 03:05:20 +0000 (23:05 -0400)
Use U+007D MULTPLICATION SIGN for dimensions.

https://bugzilla.gnome.org/show_bug.cgi?id=735192

modules/printbackends/cups/gtkprintbackendcups.c

index 06c1e6868691854c9e8852691beb88592b4327e0..fb0d6a015f187ca33ae0d49337cb7c123acf87a1 100644 (file)
@@ -5114,7 +5114,7 @@ cups_printer_get_options (GtkPrinter           *printer,
               * the width and height in points. E.g: "Custom
               * 230.4x142.9"
                */
-             custom_name = g_strdup_printf (_("Custom %sx%s"), width, height);
+             custom_name = g_strdup_printf (_("Custom %s×%s"), width, height);
              strncpy (option->defchoice, custom_name, PPD_MAX_NAME);
              g_free (custom_name);
            }